home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d15 / kfree21.arc / INSTALL.BAT < prev    next >
DOS Batch File  |  1990-08-15  |  2KB  |  36 lines

  1. @ECHO OFF
  2.  
  3. IF NOT .%1 == . goto INSTALL
  4. @echo ****************************************************************
  5. @echo **                                                            **
  6. @echo **    You must supply a path where you have Windows installed **
  7. @echo **    for example:  INSTALL C:\WINDOWS                        **
  8. @echo **    would cause INSTALL.BAT to install K-Free in the        **
  9. @echo **    \WINDOWS directory on drive C:                          **
  10. @echo **                                                            **
  11. @echo ****************************************************************
  12. goto EXIT
  13.  
  14.  
  15. :INSTALL
  16. @echo **  Copying KFREE.EXE to %1
  17. copy kfree.exe %1
  18. @echo **  Copying KFREE.INI to %1
  19. copy kfree.ini %1
  20. @echo **  Copying DELIB.DLL to %1
  21. copy delib.dll %1
  22.  
  23. @echo ****************************************************************
  24. @echo **                                                            **
  25. @echo **  Please read the documentation contained in the file:      **
  26. @echo **  KFREE.DOC for information on the features of K-Free       **
  27. @echo **                                                            **
  28. @echo **  ORDER.DOC and LICENSE.WRI contain important information   **
  29. @echo **  on registration and site licenses for K-Free and other    **
  30. @echo **  products from Dragons Eye Software                        **
  31. @echo **                                                            **
  32. @echo ****************************************************************
  33.  
  34. :EXIT
  35.  
  36.